Deprecate direct access to public variables in GtkButtonBox.
authorTim Janik <timj@src.gnome.org>
Fri, 20 Jun 2008 10:57:57 +0000 (10:57 +0000)
committerTim Janik <timj@src.gnome.org>
Fri, 20 Jun 2008 10:57:57 +0000 (10:57 +0000)
* gtk/gtkbbox.h: Deprecate direct access through GSEAL().

svn path=/trunk/; revision=20490

gtk/gtkbbox.h

index ecd91d78b2116bfab1c654d53ef656b84791094f..f0666a210fc985b03323a476d00fc3d041393f8e 100644 (file)
@@ -52,11 +52,11 @@ typedef struct _GtkButtonBoxClass  GtkButtonBoxClass;
 struct _GtkButtonBox
 {
   GtkBox box;
-  gint child_min_width;
-  gint child_min_height;
-  gint child_ipad_x;
-  gint child_ipad_y;
-  GtkButtonBoxStyle layout_style;
+  gint GSEAL (child_min_width);
+  gint GSEAL (child_min_height);
+  gint GSEAL (child_ipad_x);
+  gint GSEAL (child_ipad_y);
+  GtkButtonBoxStyle GSEAL (layout_style);
 };
 
 struct _GtkButtonBoxClass